home *** CD-ROM | disk | FTP | other *** search
/ Workplace Effectiveness: Dealing with Change / Workplace Effectiveness: Dealing with Change.iso / pc / Tools.Dxr / Internal_2_Main navigation buttons.ls < prev    next >
Encoding:
Text File  |  1998-05-04  |  1.4 KB  |  93 lines

  1. global gMasterData
  2.  
  3. on goMain
  4.   leavePart2()
  5.   if iAmActivated(gMasterData) then
  6.     getAllPart2()
  7.   end if
  8.   cursor(4)
  9.   go("start", "Menu")
  10. end
  11.  
  12. on goSubMenu
  13.   stopSounds()
  14.   if getUserArea(gMasterData) = #plot then
  15.     exitPlot()
  16.   end if
  17.   setUpPart2()
  18. end
  19.  
  20. on goBack
  21.   stopSound2()
  22.   case getUserArea(gMasterData) of
  23.     #raceEnd:
  24.       goRaceNoTina()
  25.     #self2:
  26.       exitSelf2()
  27.       goSelf()
  28.     #self3:
  29.       self2From3()
  30.     #critters1:
  31.       exitCritters()
  32.       goNonPro()
  33.     #critters2:
  34.       exitChair()
  35.       goCritters()
  36.     #nonpro2:
  37.       goCritters()
  38.     #stages2:
  39.       stagesIntro()
  40.     #paper:
  41.       paperAgain()
  42.   end case
  43. end
  44.  
  45. on GoOn
  46.   stopSound2()
  47.   case getUserArea(gMasterData) of
  48.     #raceEnd:
  49.       setUpPart2()
  50.     #self1:
  51.       goSelf2()
  52.     #self2:
  53.       exitSelf2()
  54.       goSelf3()
  55.     #self3:
  56.       exitSelf3()
  57.       setUpPart2()
  58.     #nonpro1:
  59.       goCritters()
  60.     #critters1:
  61.       exitCritters()
  62.       goYourChair()
  63.     #critters2:
  64.       exitChair()
  65.       goNotePaper()
  66.     #nonpro2:
  67.       exitNonPro()
  68.       setUpPart2()
  69.     #chefEnd:
  70.       exitChef()
  71.       setUpPart2()
  72.     #stages1:
  73.       setUpStages()
  74.     #plot:
  75.       exitPlot()
  76.       setUpPart2()
  77.     #paper:
  78.       exitPaper()
  79.       setUpPart2()
  80.     otherwise:
  81.       setUpPart2()
  82.   end case
  83. end
  84.  
  85. on notePadButton
  86.   DoNotepad()
  87. end
  88.  
  89. on continueNext
  90.   stopSound2()
  91.   go(the frame + 1)
  92. end
  93.